今天在YouTube看到一個不錯的影片,可以直接在瀏覽器執行CMD
我照上面的方法更改登錄編輯程式,並用python寫了一個同樣效果的。
使用系統管理員 - cmd
cd cmd-protocol xcopy protocol.exe C:\Windows\system32\protocol.exe
- [x] 無法使用參數
- [ ] 無法輸入中文字
- [x] 無法使用\符號(有用到目錄的無法使用,將盡快修正)
- [x] 無法使用|和-的錯誤
import sys
import os
URL = sys.argv[1]
commands = URL.split('//')
command_tmp = commands[1]
t22 = command_tmp[len(command_tmp) - 1]
if t22 == "/":
command_tmp2 = command_tmp[:-1]
else:
command_tmp2 = command_tmp
command = command_tmp2.replace('%20', ' ').replace('%5C', '\\').replace('%7C', '|').replace('-/', '-').replace('%25', '%')
print(" URL = " + URL)
print(" command = " + command)
a = 1
while a == 1:
start = input("Are you sure you want to execute[Y/N]")
if start=="Y":
if URL=="cmd:///":
os.system("cmd")
exit()
os.system("cmd /c " + command)
exit()
if start=="y":
if URL=="cmd:///":
os.system("cmd")
exit()
os.system("cmd /c " + command)
exit()
elif start=="N":
exit()
elif start=="n":
exit()
else:
print("Wrong input")